home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / Delphi 3.0 / DATA.Z / REGCONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-01-30  |  215 b   |  18 lines

  1. unit regconst;
  2.  
  3. interface
  4.  
  5. {$R regconst.RES}
  6.  
  7. const
  8.   SAbout = 1;
  9.   SUsage = 2;
  10.   SFileNotFound = 3;
  11.   SCantFindProc = 4;
  12.   SRegFail = 5;
  13.   SLoadFail = 6;
  14.   SRegSuccessful = 7;
  15.  
  16. implementation
  17.  
  18. end.